home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / dev / c / libiconv_src.lha / src / cns11643.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-07  |  787 b   |  31 lines

  1. /*
  2.  * CNS 11643-1992
  3.  */
  4.  
  5. /* ISO-2022-CN and EUC-TW use CNS 11643-1992 planes 1 to 7. But all tables we
  6.  * have are for CNS 11643-1992 planes 1,2,3. We use a trick to keep the
  7.  * Unicode -> CNS 11643 table as small as possible (see cns11643_inv.h).
  8.  */
  9.  
  10. #include "cns11643_1.h"
  11. #include "cns11643_2.h"
  12. #include "cns11643_3.h"
  13. #include "cns11643_inv.h"
  14.  
  15. /* Returns the plane number (0,1,2) in r[0], the two bytes in r[1],r[2]. */
  16. static int
  17. cns11643_wctomb (conv_t conv, unsigned char *r, wchar_t wc, int n)
  18. {
  19.   if (n >= 3) {
  20.     int ret = cns11643_inv_wctomb(conv,r+1,wc,2);
  21.     if (ret == RET_ILSEQ)
  22.       return RET_ILSEQ;
  23.     if (ret != 2) abort();
  24.     r[0] = ((r[1] & 0x80) >> 6) | ((r[2] & 0x80) >> 7);
  25.     r[1] &= 0x7f;
  26.     r[2] &= 0x7f;
  27.     return 3;
  28.   }
  29.   return RET_TOOSMALL;
  30. }
  31.